home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Resources / HTMLGate 12.2.1B / htmlgate.exe / {app} / Cookies / cookie3.txt < prev    next >
Text File  |  2000-07-12  |  465b  |  18 lines

  1. <SCRIPT LANGUAGE="JavaScript">
  2. <!--
  3.  
  4. function tastecookie(name) { 
  5.         var bigone = document.cookie; 
  6.         first= bigone.indexOf(name); 
  7.         if(first != -1){ 
  8.                 first+= name.length + 1; 
  9.                 last = bigone.indexOf(';', first); 
  10.                 if(last == -1) last = bigone.length; 
  11.                         value= bigone.substring(first, last); 
  12.         } else value = "" 
  13.         return value 
  14. }
  15.  
  16. -->
  17. </SCRIPT>
  18.